home *** CD-ROM | disk | FTP | other *** search
/ Power Programmierung / Power-Programmierung (Tewi)(1994).iso / magazine / progjour / 1988 / 04 / l4.asm < prev    next >
Assembly Source File  |  1988-04-02  |  471b  |  39 lines

  1. ; *** Listing 4 ***
  2. ;
  3. ; Sample code to illustrate various approaches to generating local
  4. ; symbols within REPT loops that don't seem to work with MASM 5.0.
  5. ;
  6.     dosseg
  7.     .model    small
  8.     .code
  9.  
  10. mac1    macro
  11.     rept    10
  12.     local    testlabel
  13.     jmp    testlabel
  14. testlabel:
  15.     endm
  16.     endm
  17.  
  18. mac2    macro
  19.     local    testlabel
  20.     rept    10
  21.     jmp    testlabel
  22. testlabel:
  23.     endm
  24.     endm
  25.  
  26. start:
  27.     mac1
  28.  
  29.     mac2
  30.  
  31.     rept    10
  32.     local    testlabel
  33.     jmp    testlabel
  34. testlabel:
  35.     endm
  36.  
  37.     end    start
  38.  
  39.